@charset "utf-8";
/* CSS 初始化 */
html, body, div, span, applet, object, iframe, h1, h2, h3,
h4, h5, h6, p, blockquote, pre, a, abbr, acronym,
address, big, cite, code, del, dfn, em, font, img, ins,
kbd, q, s, samp, small, strike, strong, sub, sup, tt,
var, dl, dt, dd, ol, ul, li, fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td {
    margin: 0 auto;
    padding: 0;
    border: 0;
    outline: 0;
    font-family: '微软雅黑';
    font-size: 12px;
}

/*清除浮动*/
.clearfix {
    *zoom: 1;
}

.clearfix:after {
    visibility: hidden;
    display: block;
    font-size: 0;
    content: " ";
    clear: both;
    height: 0;
}

body, div, p, h1, h2, h3, h4, h5, h6, ul, ol, li {
    box-sizing: border-box;
}

body {
    background-color: #fff;
}

:focus {
    outline: 0;
}

strong, b {
    font-weight: bold;
}

a, a:link, a:visited, a:active, a:hover {
    text-decoration: none;
    color: #666;
}

a:hover {
    color: #df3536;
    transition: all .3s ease-out 0s;
}

table {
    border-collapse: separate;
    border-spacing: 0;
}

th, td {
    text-align: left;
    font-weight: normal;
}

img, iframe {
    border: none;
    text-decoration: none;
}

ol, ul {
    list-style: none;
}

input, textarea, select, button {
    font-family: '微软雅黑';
}

select {
    margin: inherit;
}

input, textarea, select {
    -webkit-appearance: none;
    -webkit-font-weight: 400;
    -webkit-border-radius: 0;
}

.border_none {
    border: none !important;
}

.block {
    display: block;
}

.ml10 {
    margin-left: 10px;
}

.mr10 {
    margin-right: 10px;
}

.mt10 {
    margin-top: 10px;
}

.mb10 {
    margin-bottom: 10px;
}

.mr15 {
    margin-right: 15px;
}

.ml15 {
    margin-left: 15px;
}

.mt15 {
    margin-top: 15px;
}

.mb15 {
    margin-bottom: 15px;
}

.mr20 {
    margin-right: 20px;
}

.ml20 {
    margin-left: 20px;
}

.mt20 {
    margin-top: 20px;
}

.mb20 {
    margin-bottom: 20px;
}

.pt0 {
    padding-top: 0px;
}

.pb0 {
    padding-bottom: 0px;
}

.pl0 {
    padding-left: 0px;
}

.pr5 {
    padding-right: 0px;
}

.pt5 {
    padding-top: 5px;
}

.pb5 {
    padding-bottom: 5px;
}

.pl5 {
    padding-left: 5px;
}

.pr5 {
    padding-right: 5px;
}

.pt10 {
    padding-top: 10px;
}

.pb10 {
    padding-bottom: 10px;
}

.pl10 {
    padding-left: 10px;
}

.pr10 {
    padding-right: 10px;
}

.pt15 {
    padding-top: 15px;
}

.pb15 {
    padding-bottom: 15px;
}

.pl15 {
    padding-left: 15px;
}

.pr15 {
    padding-right: 15px;
}

.pt20 {
    padding-top: 20px;
}

.pb20 {
    padding-bottom: 20px;
}

.pl20 {
    padding-left: 20px;
}

.pr20 {
    padding-right: 20px;
}

.clear {
    display: block !important;
    float: none !important;
    clear: both;
}

/*主内容区域大小*/
.content {
    width: 1200px;
    margin: 0 auto;
}

/*固定位置*/
.stick {
    position: fixed;
    top: 0;
    left: 0;
}

/*浮动*/
.fl {
    float: left;
}

.fr {
    float: right;
}

/*单行文字溢出显示省略号*/
.text-ellipsis {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/*多行文字溢出*/
.mText-ellipsis {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
}

/*灰色滤镜*/
.gary-filter {
    webkit-filter: grayscale(100%);
    -moz-filter: grayscale(100%);
    -ms-filter: grayscale(100%);
    -o-filter: grayscale(100%);
    filter: grayscale(100%);
    filter: gray;
}

/*正文内容最小高度限定*/
.contentMinHeight {
    min-height: 600px;
}

/*阴影样式*/
.shadow {
    box-shadow: 0 0 20px #edebe4;
}

.off-page {
    overflow: hidden;
    position: fixed;
}

/*单行文字溢出显示省略号*/
.text-ellipsis {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/*多行文字溢出*/
.mText-ellipsis {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
}